/************ HEADER ***************/
	
#logo{
    width: 100%;
    height: 110px;
	background:url(../img/logo_bg.png) no-repeat;
	filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale')";
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
	}

#logo_l{
	width: 600px;
    float: left;
	}
	
#logo_l a{
    display: block;
    font-size: 14px;
    color: #0e0e0e;
    text-transform: uppercase;
    font-family: 'Arial';
    letter-spacing: 1px;
    line-height: 40px;
    padding-top: 25px;
	}
	
#logo_l a span{
	display: block;
    font-family: '微软雅黑';
    font-size: 40px;
    letter-spacing: 3px;
	}

#logo_r{
	width: 600px;
    float: right;
	}
	
#tel_div{
	width: 220px;
    padding-left: 65px;
    height: 50px;
    line-height: 25px;
    background: url(../img/tel_bg.png) no-repeat;
    font-size: 28px;
    color: #0e0e0e;
    font-family: 'Arial';
    /* font-weight: bold; */
    text-align: left;
    /* letter-spacing: 2px; */
    float: right;
    margin-top: 30px;
    overflow: hidden;
	}
	
#tel_div span{
	display: block;
    font-size: 14px;
    font-family: '微软雅黑';
    color: #282828;
	}

#nav{
    width: 100%;
    height: 50px;
    background: #ff4a5c
	}

/* 通用样式 */
.menu, .menu ul {
	list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
    border-bottom: 3px #e70b27 solid;
    padding-bottom: 10px;
	}
	
.menu {
    height: 50px;
	}

.menu li {
/*    background: -moz-linear-gradient(#292929, #252525);
    background: -ms-linear-gradient(#292929, #252525);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #252525));
    background: -webkit-linear-gradient(#292929, #252525);
    background: -o-linear-gradient(#292929, #252525);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#252525');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#252525')";
    background: linear-gradient(#292929, #252525);*/

/*    border-bottom: 2px solid #181818;
    border-top: 2px solid #303030;
    min-width: 160px;*/
}
.menu > li {
    display: block;
    float: left;
    position: relative;
}

.menu > li:first-child {
    /*border-radius: 5px 0 0;*/
	}

.menu a {
	color: #fff;
    display: block;
    font-family: '微软雅黑';
    font-size: 16px;
    line-height: 50px;
    width: 150px;
    text-align: center;
    height: 50px;
    letter-spacing: 1px;
	}
	

/* 悬停时的样式 */
.menu li:hover {
    /*color:#8e2627;*/
    /*border-bottom: 2px solid #ff7e0e;*/
    /*border-top: 2px solid #1B1B1B;*/
	font-weight:bold;
	color:#bb0101;
	background:#e70b27;
	/*border-bottom: 2px #bb0101 solid;*/
	}


.menu li:hover > a {
    /*border-radius: 5px 0 0 0;*/
    /*border-left: 3px solid #C4302B;*/

	border:0;
	}
	
.menu li:hover > .submenu li {
	border:0;
	}

/* 子菜单样式 */
.submenu {
    /*left: 31px;*/
    max-height: 0;
    position: absolute;
    top: 50px;
    z-index: 0;
	padding:10px 15px;
	/*width:140px;*/
	/*border-top: 2px #8e2627 solid;*/
    -webkit-perspective: 400px;
    -moz-perspective: 400px;
    -ms-perspective: 400px;
    -o-perspective: 400px;
    perspective: 400px;
	background:rgba(255,255,255,1);
}
.submenu li {
	width: 120px;
    padding: 0px 15px;
    opacity: 0;
    -webkit-transform: rotateY(90deg);
    -moz-transform: rotateY(90deg);
    -ms-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-transition: opacity .4s, -webkit-transform .5s;
    -moz-transition: opacity .4s, -moz-transform .5s;
    -ms-transition: opacity .4s, -ms-transform .5s;
    -o-transition: opacity .4s, -o-transform .5s;
    transition: opacity .4s, transform .5s;
}

.submenu li a{
	font-size: 14px;
    height: 29px;
    line-height: 29px;
    font-weight: normal;
    color: #000000;
    margin: 5px 0px;
    /* padding: 0px 5px; */
    border-bottom: 1px #c2c2c2 dashed;
    width: 100%;
	}

.menu .submenu li:hover a {
    /*border-left: 3px solid #454545;*/
	/*border-bottom:1px #15418a dashed;
    color: #FFF;
	background:#15418a;*/
	background:none;
	border-bottom: 1px #e70b27 dashed;
	color:#fff;	
}
.menu > li:hover .submenu, .menu > li:focus .submenu {
    max-height: 2000px;
    z-index: 10;
}
.menu > li:hover .submenu li, .menu > li:focus .submenu li {
    opacity: 1;

    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

/* CSS3 过渡效果的延迟 */
.menu li:hover .submenu li:nth-child(1) {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.menu li:hover .submenu li:nth-child(2) {
    -webkit-transition-delay: 50ms;
    -moz-transition-delay: 50ms;
    -ms-transition-delay: 50ms;
    -o-transition-delay: 50ms;
    transition-delay: 50ms;
}
.menu li:hover .submenu li:nth-child(3) {
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
}
.menu li:hover .submenu li:nth-child(4) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    -ms-transition-delay: 150ms;
    -o-transition-delay: 150ms;
    transition-delay: 150ms;
}
.menu li:hover .submenu li:nth-child(5) {
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}
.menu li:hover .submenu li:nth-child(6) {
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
    -ms-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    transition-delay: 250ms;
}
.menu li:hover .submenu li:nth-child(7) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}
.menu li:hover .submenu li:nth-child(8) {
    -webkit-transition-delay: 350ms;
    -moz-transition-delay: 350ms;
    -ms-transition-delay: 350ms;
    -o-transition-delay: 350ms;
    transition-delay: 350ms;
}

.submenu li:nth-child(1) {
    -webkit-transition-delay: 350ms;
    -moz-transition-delay: 350ms;
    -ms-transition-delay: 350ms;
    -o-transition-delay: 350ms;
    transition-delay: 350ms;
}
.submenu li:nth-child(2) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}
.submenu li:nth-child(3) {
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
    -ms-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    transition-delay: 250ms;
}
.submenu li:nth-child(4) {
    -webkit-transition-delay: 200ms;
    -moz-transition-delay: 200ms;
    -ms-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}
.submenu li:nth-child(5) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    -ms-transition-delay: 150ms;
    -o-transition-delay: 150ms;
    transition-delay: 150ms;
}
.submenu li:nth-child(6) {
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    -ms-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
}
.submenu li:nth-child(7) {
    -webkit-transition-delay: 50ms;
    -moz-transition-delay: 50ms;
    -ms-transition-delay: 50ms;
    -o-transition-delay: 50ms;
    transition-delay: 50ms;
}
.submenu li:nth-child(8) {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

/************ HEADER ***************/








/************ FOOTER ***************/

.footer{
	width: 100%;
    height: 340px;
    background: #343434;
    border-top: 2px #e70b27 solid;
	}
	
#foot_nav{
	width: 100%;
    height: 109px;
    line-height: 109px;
    border-bottom: 1px #404040 solid
	}

#foot_nav a{
	font-size: 14px;
    float: left;
    color: #FFF;
    margin: 0px 47px;
	}

#foot_c{
	width: 100%;
    height: 150px;
    padding-top: 45px;
    font-size: 14px;
    color: #FFF;
    line-height: 34px;
    text-align: center;
	}

#foot_c_l{
	width: 710px;
    text-align: center;
    float: left;
	}

#foot_c_l img{
	display: block;
    margin: 0px auto;
    margin-top: 20px;
	}

#foot_c_r{
	width: 390px;
    float: right;
    font-size: 12px;
    color: #FFF;
    line-height: 34px;
	}

#foot_icp{
	width: 100%;
    height: 60px;
    line-height: 60px;
    background: #404040;
    text-align: center;
    font-size: 14px;
    color: #FFF;
    text-transform: uppercase;
	}

#foot_icp a{
	color: #FFF;
	}


/************ FOOTER ***************/









/************ INDEX MAIN ***************/

#main_i{
	overflow: hidden;
	padding-top:40px;
	background:url(../img/body_bg.png) no-repeat;
	filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale')";
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
	}
	
.index_title{
	width: 100%;
    height: 35px;
    line-height: 35px;
    font-size: 24px;
    color: #0e0e0e;
	}
	
.index_title img{
    display: block;
    float: left;
    margin-top: 3px;
    margin-right: 10px;
	}
	
.index_title a{
	display: block;
    float: right;
    font-size: 14px;
    color: #0e0e0e;
	}
	
.index_title a i{
	display: block;
    float: right;
    font-style: normal;
    border: 1px #e70b27 solid;
    border-radius: 50%;
    font-size: 10px;
    color: #e70b27;
    height: 13px;
    line-height: 12px;
    width: 13px;
    text-align: center;
    margin-left: 10px;
    margin-top: 10px;
	}
	
	
	
	
	
	
#index1{
    width: 100%;
	}
	
#index1_c{
    padding: 30px 25px;
    background: #FFF;
    height: 380px;
	}
	
.gg_box{
	width: 270px;
    height: 175px;
    float: left;
    margin: 0px 8px;
    margin-bottom: 30px;
    overflow: hidden;
	}

.gg_box span{
	display: block;
    float: left;
    font-size: 22px;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 30px 25px;
	transition:all 0.3s linear 0s;
	line-height:30px;
	}

.gg_box img{
    display: block;
    float: right;
    padding: 95px 10px 10px 0px;
	transition:all 0.3s linear 0s;
	}
	
.gg_box:hover>span{
	padding-top:50px;
	padding-left:35px;
	transition:all 0.3s linear 0s;
	}
	
.gg_box:hover>img{
	padding-right:20px;
	padding-top:80px;
	transition:all 0.3s linear 0s;
	}
	
	
	
	
	
#index2{
	width: 100%;
    margin-top: 35px;
    height: 600px;
    overflow: hidden;
	}

#index2_l{
    width: 920px;
    height: 540px;
    background: #FFF;
    float: left;
    padding: 30px 15px;
	}
	
#index2_l_type{
	width:100%;
	height:30px;
	margin-top:25px;
	}

#index2_l_type span{
    display: block;
    float: left;
    width: 90px;
    text-align: center;
    height: 28px;
    line-height: 28px;
    background: #ffecee;
    border-radius: 20px;
    font-size: 14px;
    color: #e70b27;
    margin: 0px 10px;
	}
	
#index2_l_c{
	display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    font-size: 16px;
    color: #222222;
    line-height: 28px;
    letter-spacing: 1px;
    height: 140px;
    margin-top: 37px;
	}
	
#index2_l_c p{
	padding:0;
	margin:0;
	}
	
#index2_l_c2{
    width: 100%;
    margin-top: 40px;
	}

#index2_l_c2_l{
	width: 185px;
    height: 200px;
    background: url(../img/index2_l_img1.jpg) no-repeat;
    float: left;
    padding-top: 30px;
    padding-left: 25px;
	}

#index2_l_c2_l span{
    display: block;
    width: 42px;
    height: 135px;
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    writing-mode: vertical-lr;
    font-size: 20px;
    color: #222222;
    text-align: center;
    line-height: 42px;
    letter-spacing: 4px;
	}
	
#index2_l_c2_r{
	width: 710px;
    float: right;
	}

.qyjs_box{
	width: 210px;
    text-align: center;
    height: 230px;
    background: #ffecee;
    float: left;
    margin-left: 26px;
    font-size: 12px;
    color: #666666;
    letter-spacing: 1px;
    line-height: 30px;
	}

.an{
    display: block;
    margin: 20px auto;
	transition:all 0.3s linear 0s;
	}
	
.qyjs_box:hover>.an{
	transition:all 0.3s linear 0s;
    -moz-transform:scaleX(-1);
    -webkit-transform:scaleX(-1);
    -o-transform:scaleX(-1);
    transform:scaleX(-1);
	}

	
.qyjs_box span{
	display: block;
    font-size: 18px;
    color: #222222;
	}

#index2_r{
	width:230px;
	float:right;
	}
	
#index2_r1{
    padding: 30px 10px;
    background: #FFF;
    height: 230px;
	}
	
#index2_r1_c{
	width: 100%;
    margin-top: 15px;
	}

#index2_r1_c a{
	display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 14px;
    color: #222222;
    line-height: 38px;
	}
	
#index2_r1_c a span{
	display: block;
    float: left;
    width: 17px;
    text-align: center;
    height: 17px;
    line-height: 18px;
    background: #e1e1e1;
    color: #FFF;
    font-family: 'Arial';
    font-size: 10px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 10px;
    margin-right: 10px;
	}
	
#index2_r1_c a:hover{
	color:#e70b27;
	}
	
#index2_r1_c a:hover>span{
	background:#fed47d;
	}

#index2_r2{
    padding: 30px 10px;
    background: #FFF;
    height: 230px;
    margin-top: 20px;
	}
	
#index2_r2_c{
	width: 100%;
    margin-top: 15px;
	}

#index2_r2_c a{
	display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 14px;
    color: #222222;
    line-height: 38px;
	}
		
#index2_r2_c a:hover{
	color:#e70b27;
	}
	
	
	
	
	
#index3{
	width:100%;
	margin-top:30px;
	}
	
#index3_c{
	padding: 35px 25px;
    background: #FFF;
    height: 415px;
    margin-top: 25px;
	}
	
.gsxc_box{
	height:200px;
	}

.gsxc_box a{
	display:block;
	height:200px;
	}
	
.gsxc_box a img{
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
	}
	
	
	
	
	
#index4{
    width: 100%;
    margin-top: 30px;
    height: 400px;
    padding-bottom: 40px;
	}

#index4_l{
	padding: 20px 10px;
    background: #FFF;
    float: left;
    width: 930px;
    height: 360px;
	}
	
#index4_l_c{
	width: 100%;
    margin-top: 30px;
	}

.n_box{
	display: block;
    float: left;
    width: 450px;
    height: 129px;
    border-bottom: 1px #e9e9e9 solid;
    overflow: hidden;
    margin-bottom: 25px;
	}
	
.n_box:nth-child(2){ margin-left:30px;}
.n_box:nth-child(4){ margin-left:30px;}

.n_box_t{
	display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 16px;
    color: #222222;
    height: 35px;
    line-height: 35px;
	}

.n_box_t span{
	float:right;
	}
	
.n_box_b{
	display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 14px;
    color: #555555;
    line-height: 28px;
    margin-top: 10px;
	}

.n_box_b p{
	padding:0;
	margin:0;
	}
	
.n_box_b p img{
	display:none;
	}
	
.n_box:hover{
	border-bottom: 1px #e70b27 solid;
	}
	
.n_box:hover>.n_box_t{
	color:#e70b27;
	}

#index4_r{
    width: 235px;
    float: right;
    background: url(../img/baoming.jpg) no-repeat;
    height: 270px;
    padding-top: 130px;
	}
	
#index4_r1{
	width: 100%;
    height: 40px;
	}

#index4_r1 span{
    display: block;
    float: left;
    width: 65px;
    text-align: center;
    height: 18px;
    line-height: 18px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px #00a2ff solid;
    margin: 0px 4px;
    font-size: 12px;
	}
	
#index4_r2{
	padding: 0px 10px;
    font-size: 12px;
    color: #222222;
    line-height: 20px;
    text-align: center;
    height: 75px;
	}

#index4_r a{
	display: block;
    width: 120px;
    text-align: center;
    height: 35px;
    line-height: 35px;
    background: #ff4a5c;
    color: #FFF;
    margin: 0px auto;
    font-size: 16px;
    letter-spacing: 1px;
	}


	
	
	
	
	


/************ INDEX MAIN ***************/








/************ SIDEBAR ***************/

.sidebar_title{
	width: 100%;
    text-align: center;
    height: 80px;
    background: #005fb1;
    font-size: 15px;
    color: #FFF;
    text-transform: uppercase;

    letter-spacing: 1px;
    line-height: 25px;
	}
	
.sidebar_title span{
	display: block;
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    padding-top: 12px;
	}
	
.sidebar_t_c{
    border: 1px solid #e5e5e5;
    padding: 10px;
    margin-bottom: 20px;
	}
	
.sidebar_t_c a{
	border-bottom: 1px dashed #ededed;
    display: block;
    padding: 0px 10px;
    height: 49px;
    line-height: 49px;
    color: #595959;
    font-size: 12px;
	}
	
.sidebar_t_c a span{
	float: right;
	}
	
.sidebar_t_c a:hover{
	background:#005fb1;
	color:#FFF;
	font-weight:bold;
	text-indent:10px;
	}
	
.sidebar_b_c{
    border: 1px solid #e5e5e5;
    padding: 10px;
    font-size: 12px;
    color: #595959;
    line-height: 36px;
	}

/************ SIDEBAR ***************/








/************ 内页 ***************/

.commoninner{
    width: 1200px;
    margin: 0px auto;
    margin-top: 40px;
    margin-bottom: 50px;
	}
	
.inner-left{
    width: 235px;
    float: right;
	}
	
.inner-right{
	width: 900px;
    float: left;
    background: #FFF;
    padding: 20px 20px;
    min-height: 980px;
	}

	
.title{
	margin: 0px;
    padding: 0px;
    height: 44px;
    line-height: 44px;
    /* font-weight: bold; */
    margin-bottom: 20px;
    font-size: 18px;
    color: #e70b27;
    border-bottom: 1px #e9e9e9 solid;
    letter-spacing: 1px;
	}
	
.weizhi{
	display: block;
    float: right;
    font-size: 12px;
    color: #6e6e6e;
    line-height: 44px;
	}
	
.weizhi a{
	color: #6e6e6e;
	}
	
.de-about-content{}

.de-about-content p{
	margin: 0px;
    font-size: 14px;
    line-height: 28px;
	}
	
#yh_title{
	width: 100%;
    height: 240px;
	}

#yh_t1{
    width: 100%;
    font-size: 22px;
    color: #222222;
    font-weight: bold;
    height: 70px;
    line-height: 55px;
	}

#yh_t2{
    padding: 20px 10px;
    background: #f5f5f5;
    height: 60px;
	}

#yh_t2 span{
	display: block;
    font-size: 14px;
    color: #999999;
    line-height: 30px;
	}
	
#yh_t2 span i{
    font-style: normal;
    color: #e70b27;
    margin-left: 20px;
	}
	
#yh_t3{
	width: 100%;
    font-size: 14px;
    color: #999999;
    height: 50px;
    line-height: 50px;
    padding-left: 10px;
	}

#yh_t3 i{
    font-style: normal;
    color: #222222;
    margin-left: 10px;
	}

#yh_xq{
    width: 100%;
    height: 59px;
    border-bottom: 1px #e5e5e5 solid;
    margin-bottom: 20px;
	}

#yh_xq span{
    display: block;
    width: 105px;
    text-align: center;
    height: 59px;
    line-height: 59px;
    background: #e70b27;
    color: #FFF;
    font-size: 15px;
    letter-spacing: 1px;
	}
	
	
.de-product-list{
    overflow: hidden;
	}

.de-product-list ul{
	padding:0px;
	margin:0px;
	}
	
.de-product-list ul a{
	display: block;
    width: 205px;
    height: 270px;
    float: left;
    border: 1px #dcdcdc solid;
    /* background: #f3f3f3; */
    text-align: center;
    line-height: 40px;
    color: #282828;
    font-size: 12px;
    font-family: '微软雅黑';
    margin: 0px 9px;
    margin-bottom: 20px
	}

.de-product-list ul a img{
	display: block;
    width: 100%;
    height: 100%;
	}
	
.de-product-list ul a span{
    display: block;
    width: 144px;
    text-align: center;
    height: 28px;
    line-height: 28px;
    background: #ff4a5c;
    border-radius: 20px;
    color: #FFF;
    letter-spacing: 1px;
    margin: 0px auto;
    margin-top: -50px;
    position: relative;
	}
	
.MagnifierMain{
	display:block;
	width:100%;
	border:0 !important;
	text-align:center;
	margin:30px auto;
	}
	
.MagnifierMain img{}
	
.MagTargetImg{
    display: block;
    margin: 0px auto;
    max-width: 100%;
	}
	
.prodectInfo{
	width: 1200px;
    margin: 0px auto;
	margin-bottom: 50px;
	}
	
.info-crumbs{
	background: #f6f6f6;
    height: 45px;
    line-height: 45px;
    text-indent: 20px;
    font-size: 14px;
    color: #595959;
	}
	
.info-crumbs a{
	color: #595959;
	}
	
.info-main{
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
	}

.info-main span{
	display: block;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 60px;
	}
	
.info-main img{
	display:block;
	margin:0px auto;
	}
	
.infoCenter-left{
	width: 260px;
    float: left;
	}
	
.infoCenter-right{
	width: 900px;
    float: right;
	}
		
.center-content table{
	width:100% !important;
	text-align:center;
	border-collapse: collapse;
	}
	
.center-content table tr td{
    width: 33%;
    text-align: center;
    border: 1px #282828 solid;
    font-size: 12px;
    line-height: 35px;
	}

	
.infopreview{
	width: 100%;
    height: 460px;
    padding-top: 40px;
	}
	
.center-title{
	font-weight: bold;
    font-size: 18px;
    color: #005fb1;
    line-height: 60px;
    margin-bottom: 20px;
    height: 59px;
    border-bottom: 1px solid #005fb1;
	}
	
.parm{
	float: right;
    width: 55%;
    text-align: left;
    text-indent: 10px;
	}
	
.parm table tr td{
    font-size: 12px;
    border: 1px #000 solid;
    line-height: 32px;
    text-indent: 10px;
	}
	
.center-content p{
	margin: 0px;
    font-size: 14px;
    line-height: 28px;
	}
	
.de-news-list ul{
	padding:0px;
	margin:0px;
	}
	
.de-news-list ul a{
	display: block;
    width: 870px;
    padding: 10px;
    height: 160px;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 38px;
    color: #595959;
    box-shadow: 0 0 4px 2px rgb(204 204 204 / 90%);
	}
	
.de-news-list ul a span{
    display: block;
    color: #323232;
    font-weight: bold;
    font-size: 15px;
    line-height: 42px;
	}
	
.de-news-list ul a:hover{
	box-shadow: 0 0 4px 2px rgb(231 11 39 / 90%);
	}
	
.img{
	height: 160px;
    width: 210px;
    float: left;
	}
	
.img img{
	display: block;
    height: 160px;
    width: 210px;
    object-fit: cover;
	}
	
.box{
	width: 100%;
    float: right;
    height: 160px;
	}
	
.box i{
	display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
	font-style:normal;
	}
	
.news-detail-title{
	padding-bottom: 15px;
    border-bottom: 1px dashed #ededed;
    text-align: center;
    margin-bottom: 15px;
	}
	
.news-detail{
	margin: 0px;
    font-size: 14px;
    line-height: 28px;
	}

.news-detail table {
	width: 100% !important;
    text-indent: 25px;
    border-collapse: collapse;
	}

.news-detail table tr td {
    text-align: center;
    border: 1px #282828 solid;
    font-size: 14px !important;
    line-height: 35px;
	}
	
.h3{
	font-size: 18px;
    color: #323232;
    line-height: 24px;
    font-weight: bold;
    margin: 25px 0 10px;
	}
	
.b{
	font-size: 13px;
    color: #999999;
    line-height: 20px;
	}
	
.news-detail p{
	margin: 0px;
    font-size: 16px;
    line-height: 34px;
	}
	
.newsPage{
    color: #323232;
    font-size: 12px;
    line-height: 26px;
    margin-top: 25px;
	}
	
.page-a{
	height: 44px;
    line-height: 44px;
    border-bottom: 1px #ccc dashed;
    margin-bottom: 10px;
	}
	
.newsPage a{
	color: #323232;
	}
	
.page-a a:hover{
	font-weight:bold;
	color:#e70b27;
	padding-left:10px;
	}
	
.contact-list{
	overflow: hidden;
    margin: 25px auto;
	}
	
.contact-list ul{
	padding:0;
	margin:0;
	}
	
.contact-list li{
    min-height: 28px;
    padding-left: 50px;
    float: left;
    width: 100%;
    font-size: 14px;
    color: #595959;
    line-height: 20px;
    padding-top: 8px;
    margin-bottom: 14px;
    word-wrap: break-word;
	}
	
.icon-01{
	background: url(../images/contact-icon-01.png) no-repeat left top;
	}
	
.icon-02{
	background: url(../images/contact-icon-02.png) no-repeat left top;
	}

.icon-03{
	background: url(../images/contact-icon-03.png) no-repeat left top;
	}

.icon-04{
	background: url(../images/contact-icon-04.png) no-repeat left top;
	}

.icon-05{
    background: url(../images/contact-icon-05.png) no-repeat left top;
	}

.icon-06{
    background: url(../images/contact-icon-06.png) no-repeat left top;
	}
	
#dituContent{
	width: 100%;
    height: 500px;
    margin: 0 auto;
	}
	
.de-message{
	overflow: hidden;
    padding: 0 5px;
	}
	
.tips{
	font-size: 13px;
    line-height: 55px;
    color: #737373;
	}
	
.form-tr{
	overflow: hidden;
	}
	
.form-tr input{
	display: block;
    width: 658px;
    padding: 0 10px;
    height: 38px;
    line-height: 38px;
    border: 1px solid #e6e6e6;
	}
	
.error{
	height: 18px;
    line-height: 18px;
    font-size: 12px;
    color: #f00;
    padding: 0 5px;
	}
	
.form-tr textarea{
    display: block;
    width: 658px;
    padding: 5px 10px;
    height: 168px;
    border: 1px solid #e6e6e6;
    font-family: '微软雅黑';
	}
	
.code input{
	width: 188px;
    float: left;
	}
	
.verify{
	cursor: pointer;
    float: left;
    margin-left: 25px;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 0;
	}
	
.verify img{
	display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
	}
	
.submit{
	margin-top: 15px;
    display: block;
    width: 190px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: #007b42;
    color: #fff;
    font-size: 15px;
	}
	

/************ 内页 ***************/